User Defined Function Reference

Below is a list of the user defined functions for catagory: Array Management.
Click on a user defined function name for a detailed description.

 

User Defined Function Description
_ArrayAdd Adds a specified value at the end of an array, returning the adjusted array.
_ArrayBinarySearch Uses the binary search algorithm to search through a 1-dimensional array.
_ArrayCreate Create a small array and quickly assign values.
_ArrayDelete Deletes the specified element from the given array, returning the adjusted array.
_ArrayDisplay Displays a 1-dimensional array in a message box.
_ArrayInsert Inserts the a new string at the specified element into an array, returning the adjusted array.
_ArrayMax Returns the highest value held in an array.
_ArrayMaxIndex Returns the index where the highest value occurs in the array.
_ArrayMin Returns the lowest value held in an array.
_ArrayMinIndex Returns the index where the lowest value occurs in the array.
_ArrayPop Returns the last element of an array, deleting that element from the array at the same time.
_ArrayReverse Takes the given array and reverses the order in which the elements appear in the array.
_ArraySort Sort a mutiple dimensional Array.
_ArraySwap Swaps two elements of an array.
_ArrayToClip Sends the contents of an array to the clipboard.
_ArrayToString Places the elements of an array into a single string, separated by the specified delimiter.
_ArrayTrim Trims all elements in an array a certain number of characters.